|
The C shell (csh or the improved version, tcsh, on most machines) is a Unix shell that was created by Bill Joy while he was a graduate student at University of California, Berkeley in the late 1970s. It has been distributed widely, beginning with the 2BSD release of the BSD Unix system that Joy began distributing in 1978.〔Harley Hahn, (Harley Hahn's Guide to Unix and Linux ).〕〔(Berkeley Engineering Lab Notes, Volume 1, Issue 2, October 2001 ).〕 Other early contributors to the ideas or the code were Michael Ubell, Eric Allman, Mike O'Brien and Jim Kulp.〔(''An Introduction to the C shell'' ) by Bill Joy.〕 The C shell is a command processor typically run in a text window, allowing the user to type commands. The C shell can also read commands from a file, called a script. Like all Unix shells, it supports filename wildcarding, piping, here documents, command substitution, variables and control structures for condition-testing and iteration. What differentiated the C shell from others, especially in the 1980s, were its interactive features and overall style. Its new features made it easier and faster to use. The overall style of the language looked more like C and was seen as more readable. On many systems, such as Mac OS X and Red Hat Linux, csh is actually tcsh, an improved version of csh. Often one of the two files is either a hard link or a symbolic link to the other, so that either name refers to the same improved version of the C shell. On Debian and some derivatives (including Ubuntu), there are two different packages: csh and tcsh. The former is based on the original BSD version of csh〔(Ubuntu - Details of package csh in oneiric ). Packages.ubuntu.com.〕〔(Debian - Details of package csh in squeeze ). Packages.debian.org.〕 and the latter is the improved tcsh.〔(Ubuntu - Details of package tcsh in oneiric ). Packages.ubuntu.com.〕〔(Debian - Details of package tcsh in squeeze ). Packages.debian.org.〕 tcsh added filename and command completion and command line editing concepts borrowed from the Tenex system, which is the source of the "t".〔 〕 Because it only added functionality and did not change what was there, tcsh remained backward compatible〔(tcsh(1) man page ). tcsh.〕 with the original C shell. Though it started as a side branch from the original source tree Joy had created, tcsh is now the main branch for ongoing development. tcsh is very stable but new releases continue to appear roughly once a year, consisting mostly of minor bug fixes.〔Fixes file in tcsh-17 June 2000.〕 == Design objectives and features == The main design objectives for the C shell were that it should look more like the C programming language and that it should be better for interactive use. 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「c shell」の詳細全文を読む スポンサード リンク
|